home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Text⁄Files / Writeswell Jr. 1.0.2 Master / WSI Library Source / Gripe.h < prev    next >
Text File  |  1992-11-12  |  227b  |  10 lines

  1. #undef USE_DEBUGGER    /* Undefine this to replace debugger calls with alerts */
  2.  
  3. #ifdef USE_DEBUGGER
  4. #define Gripe( foo )    DebugStr( foo )
  5. #else
  6. #define Gripe( foo )    RealGripe( foo )
  7. #endif
  8.  
  9. void RealGripe( StringPtr complaint );
  10.